home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-16 | 555 b | 20 lines | [TEXT/ttxt] |
- module: dylan-user
- language: infix-dylan
- author: Steve Strassmann, straz@apple.com
- copyright: This code is in the public domain
- version: 1.0b1 20-Nov-94
- comment: code to accompany an article in Develop magazine, Feb-95
- title: module definitions
-
- define module studio
- use dylan;
- export <project>, <actor>, <script>, name, name-setter, profits;
- end module;
-
- define module hollywood
- use dylan;
- use studio,
- export: {name, profits};
- // rename: {<project> => <production>};
- export <movie>, <tv-show>, <videogame>, do-oscars;
- end module;